4c3ab6a2b9559b0b952dd8d2ae3443375da76f90,ais-lib-communication/src/main/java/dk/dma/ais/tracker/eventEmittingTracker/Track.java,Track,addStaticReport,#AisPacket#,321

Before Change


            trackLock.lock();

            lastStaticReport = p;
            timeOfLastUpdate = p.getBestTimestamp();
            callsign = msg.getCallsign();
            shipType = msg.getShipType();
            shipName = msg.getName();

After Change


            trackLock.lock();

            lastStaticReport = p;
            timeOfLastUpdate = MILLIS_TO_LOCALDATETIME_UTC.apply(p.getBestTimestamp());
            callsign = msg.getCallsign();
            shipType = msg.getShipType();
            shipName = msg.getName();